home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / unix / include / errno.h next >
C/C++ Source or Header  |  1992-07-05  |  2KB  |  52 lines

  1. /**
  2. *
  3. * The following symbols are the error codes returned by the UNIX system
  4. * functions.  Typically, a UNIX function returns -1 when an error occurs,
  5. * and the global integer named errno contains one of these values.
  6. *
  7. */
  8. #define EOSERR -1    /* Operating system error */
  9.  
  10. #define EPERM 1        /* User is not owner */
  11. #define ENOENT 2    /* No such file or directory */
  12. #define ESRCH 3        /* No such process */
  13. #define EINTR 4        /* Interrupted system call */
  14. #define EIO 5        /* I/O error */
  15. #define ENXIO 6        /* No such device or address */
  16. #define E2BIG 7        /* Arg list is too long */
  17. #define ENOEXEC 8    /* Exec format error */
  18. #define EBADF 9        /* Bad file number */
  19. #define ECHILD 10    /* No child process */
  20. #define EAGAIN 11    /* No more processes allowed */
  21. #define ENOMEM 12    /* No memory available */
  22. #define EACCES 13    /* Access denied */
  23. #define EFAULT 14    /* Bad address */
  24. #define ENOTBLK 15    /* Bulk device required */
  25. #define EBUSY 16    /* Resource is busy */
  26. #define EEXIST 17    /* File already exists */
  27. #define EXDEV 18    /* Cross-device link */
  28. #define ENODEV 19    /* No such device */
  29. #define ENOTDIR 20    /* Not a directory */
  30. #define EISDIR 21    /* Is a directory */
  31. #define EINVAL 22    /* Invalid argument */
  32. #define ENFILE 23    /* No more files (units) allowed */
  33. #define EMFILE 24    /* No more files (units) allowed for this process */
  34. #define ENOTTY 25    /* Not a terminal */
  35. #define ETXTBSY 26    /* Text file is busy */
  36. #define EFBIG 27    /* File is too large */
  37. #define ENOSPC 28    /* No space left */
  38. #define ESPIPE 29    /* Seek issued to pipe */
  39. #define EROFS 30    /* Read-only file system */
  40. #define EMLINK 31    /* Too many links */
  41. #define EPIPE 32    /* Broken pipe */
  42. #define EDOM 33        /* Math function argument error */
  43. #define ERANGE 34    /* Math function result is out of range */
  44. #define EWOULDBLOCK 35    /* Operation would block */
  45. #define ENAMETOOLONG 36 /* File name is too long */
  46. #define ENOTEMPTY 37    /* Directory is not empty */
  47. #define ELOOP 38    /* Too many soft links found */
  48.  
  49. extern int errno, _OSERR;
  50. extern int sys_nerr;
  51. extern char *sys_errlist[];
  52.